func go/types.allBasic

9 uses

	go/types (current package)
		check.go#L454: 		assert(typ == Typ[Invalid] || allBasic(typ, IsConstType))
		predicates.go#L39: func allBoolean(typ Type) bool         { return allBasic(typ, IsBoolean) }
		predicates.go#L40: func allInteger(typ Type) bool         { return allBasic(typ, IsInteger) }
		predicates.go#L41: func allUnsigned(typ Type) bool        { return allBasic(typ, IsUnsigned) }
		predicates.go#L42: func allNumeric(typ Type) bool         { return allBasic(typ, IsNumeric) }
		predicates.go#L43: func allString(typ Type) bool          { return allBasic(typ, IsString) }
		predicates.go#L44: func allOrdered(typ Type) bool         { return allBasic(typ, IsOrdered) }
		predicates.go#L45: func allNumericOrString(typ Type) bool { return allBasic(typ, IsNumeric|IsString) }
		predicates.go#L51: func allBasic(t Type, info BasicInfo) bool {